home *** CD-ROM | disk | FTP | other *** search
- /* Copyright ©1997 Diarmuid Ryan, 12. July 1997
- ** Version 1.0 12. July 1997
- **
- ** ============= Voyager version =========================
- **
- ** This script will send an HTML file from Dopus5 to IBrowse
- **
- ** Please contact me if you have problems, discover bugs or have suggestions.
- ** Send mail to dpryan@iol.ie
- **
- ** You can also check out my homepages for updates, other scripts and stuff about Radiohead ;)
- ** Point your browser at http://www.iol.ie/~dpryan, and follow the software link.
- **
- ** You need to have Dopus 5 and VoyagerNG to run this script
- ** Please assign your Voyager directory to Voyager:
- */
-
- parse arg file
- options results
-
- /* Checking for Voyager */
-
- if Show("P","VOYAGER") then
- address "VOYAGER"
- Else do
- address command "run Voyager:V" /* running IBrowse if not present */
- Exit
- End
-
- address "VOYAGER"
- 'OpenURL file://localhost/'file
- SCREENTOFRONT
-